return the number of rows of a table in a table collection
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(TableCollection), | intent(in) | :: | tables | |||
character(len=*), | intent(in) | :: | id |
FUNCTION TablesGetNumberRows & ! ( tables, id ) & ! RESULT (rows) IMPLICIT NONE !arguments with intent (in): TYPE (TableCollection), INTENT (IN) :: tables CHARACTER (LEN = *), INTENT (IN) :: id !local dclarations: INTEGER :: rows !--------------------------------end of declarations--------------------------- rows = tables % elem ( TableSyncById (tables, id) ) % noRows END FUNCTION TablesGetNumberRows